home *** CD-ROM | disk | FTP | other *** search
/ Suzy B Software 2 / Suzy B Software CD-ROM 2 (1994).iso / new_file / mintprgs / mint112 / mint112b.lzh / MINT.CNF < prev    next >
Encoding:
Text File  |  1994-11-15  |  3.5 KB  |  104 lines

  1. # MiNT configuration file. Edit this with a normal ASCII text editor
  2. # Lines starting with '#' are comments. Other lines are commands for
  3. # MiNT to execute at boot up, or variables that control how MiNT
  4. # behaves.
  5.  
  6. # Here are some variables you can set. First, and most important, is the
  7. # full path+name of the program to execute at boot up time. If this
  8. # is not specified, MiNT will boot the version of GEM in ROM.
  9.  
  10. INIT=c:\mint\tcsh.ttp
  11.  
  12. #
  13. # OK; other things you can change if you want to. There are reasonable
  14. # defaults for all of these.
  15. #
  16.  
  17. # MAXMEM= gives the maximum amount of memory that any process may use
  18. # (in kilobytes). The default is to make this unlimited, but if you have
  19. # a lot of memory and/or programs that grab more memory than they should,
  20. # try setting this.
  21. # e.g. to limit processes to 4096K of memory, remove the '#' at the
  22. # beginning of the next line.
  23.  
  24. #MAXMEM=4096
  25.  
  26. # SLICES controls how long a process may run before being interrupted.
  27. # The default value (2) is usually best, but if you tend to run
  28. # very processor intensive applications in the foreground, you might
  29. # want to put SLICES=3 (this makes cpu hogs get more time than they
  30. # otherwise would).
  31.  
  32. #SLICES=3
  33.  
  34. # DEBUG_LEVEL controls output of debugging information. The higher
  35. # the level, the more stuff MiNT will spew about about what it's doing.
  36. # The average user doesn't want to hear about this stuff, so the default
  37. # is 0.
  38. # DEBUG_DEVNO is the BIOS device number to which the info should be sent.
  39. # The default is the screen
  40.  
  41. #DEBUG_LEVEL=1
  42. #DEBUG_DEVNO=3
  43.  
  44. # BIOSBUF controls how BIOS I/O is performed. Normally, MiNT tries to buffer
  45. # this to provide a (considerable) improvement in speed. However, some
  46. # applications may get upset by this. BIOSBUF=no turns off all buffering
  47. # for maximum compatibility.
  48.  
  49. #BIOSBUF=no
  50.  
  51. #
  52. # Here are some commands that you can give to MiNT:
  53. # alias d: path    -- make a fake "drive" that actually points to the given
  54.                     path
  55. # cd path        -- changes MiNT's default directory
  56. # echo message    -- print something on the screen
  57. # exec program    -- runs a program; you must give the complete path
  58. #                    and file extensions (e.g. c:\bin\echo.prg)
  59. # sln path link    -- make a symbolic link named "link" pointing to "path"
  60. #                    "link" must be on drive U: for this to work
  61.  
  62. # Examples follow
  63. #
  64. # Old versions of MiNT used drive letters Q:, X:, and V: to stand for
  65. # the pipe, process, and device directories, respectively. This is no
  66. # longer directly supported, but we can use 'alias' to achieve the same
  67. # effect, as follows:
  68. #
  69. #alias q: u:\pipe
  70. #alias x: u:\proc
  71. #alias v: u:\dev
  72.  
  73. #You could also use "alias" to provide a quick way of getting at
  74. #nested directories, e.g. if you do
  75. #alias r: c:\some\long\path
  76. #then clicking on drive r: puts you into the folder c:\some\long\path
  77.  
  78. #
  79. # The "echo" command is really straightforward.
  80. #
  81. #echo Now booting MiNT.
  82. #
  83.  
  84. #
  85. # The "exec" command is used to launch programs. Note that programs
  86. # so launched are started before GEM is, so they must be TOS/TTP
  87. # programs. Most commonly used for starting device drivers.
  88.  
  89. #exec c:\mint\clockdev.prg -a
  90.  
  91. #
  92. # The "sln" command may be used to create "links" on drive U:. If
  93. # u:\foo is a link to c:\bar, then u:\foo\foo.txt is another way
  94. # of saying c:\bar\foo.txt. Judicious use of links can make
  95. # re-arranging hard disks and directories painless (if you always
  96. # use the names on drive u:, it doesn't matter where you put
  97. # the actual directories).
  98.  
  99. #sln c:\bin u:\bin
  100. #sln c:\mint\app u:\app
  101. #sln d:\termcap\etc u:\etc
  102.  
  103.  
  104.